home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / cprog.EXE / CC_1.ZIP / ISPUNCT.C < prev    next >
Text File  |  1988-02-01  |  384b  |  9 lines

  1. extern int isalpha(), iscntrl();
  2. /*
  3. ** ispunct -- true if argument is neither ASCII control or alphabetic
  4. */
  5. ispunct(c) char c; {
  6.   if(isalpha(c) || iscntrl(c)) return 0;
  7.   else return 1;
  8.   }
  9.